home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / chmod.c < prev    next >
C/C++ Source or Header  |  1988-08-25  |  2KB  |  96 lines

  1. /* 
  2.  * chmod.c --
  3.  *
  4.  *    Procedure to map from Unix chmod and fchmod system calls to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: chmod.c,v 1.2 88/08/25 14:40:53 brent Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16.  
  17. #include "compatInt.h"
  18. #include <errno.h>
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * chmod --
  25.  *
  26.  *    Procedure to map from Unix chmod system call to Sprite 
  27.  *    Fs_SetAttr system call.
  28.  *
  29.  * Results:
  30.  *      UNIX_SUCCESS    - the call was successful.
  31.  *      UNIX_ERROR      - the call was not successful.
  32.  *                        The actual error code stored in errno.
  33.  *
  34.  * Side effects:
  35.  *    The protection of the specified file is modified.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. int
  41. chmod(path, mode)
  42.     char *path;
  43.     int mode;
  44. {
  45.     ReturnStatus status;    /* result returned by Sprite system calls */
  46.     Fs_Attributes attributes;    /* struct containing all file attributes,
  47.                  * only mode is looked at. */
  48.  
  49.     attributes.permissions = mode;
  50.     status = Fs_SetAttr(path,  FS_ATTRIB_FILE, &attributes, FS_SET_MODE);
  51.     if (status != SUCCESS) {
  52.     errno = Compat_MapCode(status);
  53.     return(UNIX_ERROR);
  54.     } else {
  55.     return(UNIX_SUCCESS);
  56.     }
  57. }
  58.  
  59. /*
  60.  *----------------------------------------------------------------------
  61.  *
  62.  * fchmod --
  63.  *
  64.  *    Procedure to map from Unix fchmod system call to Sprite 
  65.  *    Fs_SetAttributesID system call.
  66.  *
  67.  * Results:
  68.  *      UNIX_SUCCESS    - the call was successful.
  69.  *      UNIX_ERROR      - the call was not successful.
  70.  *                        The actual error code stored in errno.
  71.  *
  72.  * Side effects:
  73.  *    The protection of the specified file is modified.
  74.  *
  75.  *----------------------------------------------------------------------
  76.  */
  77.  
  78. int
  79. fchmod(fd, mode)
  80.     int fd;
  81.     int mode;
  82. {
  83.     ReturnStatus status;       /* result returned by Sprite system calls */
  84.     Fs_Attributes attributes;      /* struct containing all file attributes,
  85.                     * only mode is looked at. */
  86.  
  87.     attributes.permissions = mode;
  88.     status = Fs_SetAttrID(fd, &attributes, FS_SET_MODE);
  89.     if (status != SUCCESS) {
  90.     errno = Compat_MapCode(status);
  91.     return(UNIX_ERROR);
  92.     } else {
  93.     return(UNIX_SUCCESS);
  94.     }
  95. }
  96.